home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
lang
/
eiffel
/
smalleif.97
/
se.t
/
SmallEiffel
/
lib_test
/
expanded2.e
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-05-02
|
398 b
|
29 lines
-- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
-- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
--
expanded class EXPANDED2
--
-- For use of test_expanded*.e
--
creation
make
feature {ANY}
x: INTEGER;
make is
do
x := 2;
end;
set_x(v: INTEGER) is
do
x := v;
ensure
x = v;
end;
end -- EXPANDED2